﻿
using the controls:
-------------------
Build 'WpfUserControlsSampleVb' once

-> add a reference to the library
Project
	References
		Add Reference
			Browse
				Recent	[Browse]	(Reference Name is 'WpfUserControlsSampleVb')

-> add the namespace to the window (where the other namespaces are defined)
xmlns:ucs="clr-namespace:WpfUserControlsSampleVb;assembly=WpfUserControlsSampleVb"
or type: xmlns:ucs=		and select the corresponding item from the list (WpfUserControlsSampleVb)

-> add the control to the grid or another panel, for example:
<ucs:ImageButton2/>

 <Grid>
        <ucs:ImageButton2 />
 </Grid>

----
-'ucs' is a short reference name defined by the user, must be unique-

